home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 4 / Apprentice-Release4.iso / Source Code / Libraries / Apache 1.0 / cgi-bin / fortune < prev    next >
Text File  |  1995-12-04  |  172b  |  15 lines

  1. #!/bin/sh
  2.  
  3. FORTUNE=/usr/games/fortune
  4.  
  5. echo Content-type: text/plain
  6. echo
  7.  
  8. if [ -x $FORTUNE ];  then
  9.     $FORTUNE
  10. else 
  11.     echo Cannot find fortune command on this system.
  12. fi
  13.  
  14.  
  15.